315df631514a074b3363a25bafa9840f33f101bd,src/main/java/org/b3log/solo/service/ArticleQueryService.java,ArticleQueryService,getArticleContent,#HttpServletRequest#String#,948
Before Change
Stopwatchs.start("Get Article Content [Markdown]");
final String content = article.optString(ARTICLE_CONTENT);
article.put(ARTICLE_CONTENT, Markdowns.toHTML(content));
Stopwatchs.end();
}
After Change
// Markdown to HTML for content and abstract
Stopwatchs.start("Get Article Content [Markdown]");
String content = article.optString(ARTICLE_CONTENT);
content = Emotions.convert(content);
content = Markdowns.toHTML(content);
article.put(ARTICLE_CONTENT, content);
Stopwatchs.end();
}